home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / getopt.h < prev    next >
C/C++ Source or Header  |  1991-07-07  |  4KB  |  109 lines

  1. /* declarations for getopt
  2.    Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* For communication from `getopt' to the caller.
  19.    When `getopt' finds an option that takes an argument,
  20.    the argument value is returned here.
  21.    Also, when `ordering' is RETURN_IN_ORDER,
  22.    each non-option ARGV-element is returned here.  */
  23.  
  24. extern char *optarg;
  25.  
  26. /* Index in ARGV of the next element to be scanned.
  27.    This is used for communication to and from the caller
  28.    and for communication between successive calls to `getopt'.
  29.  
  30.    On entry to `getopt', zero means this is the first call; initialize.
  31.  
  32.    When `getopt' returns EOF, this is the index of the first of the
  33.    non-option elements that the caller should itself scan.
  34.  
  35.    Otherwise, `optind' communicates from one call to the next
  36.    how much of ARGV has been scanned so far.  */
  37.  
  38. extern int optind;
  39.  
  40. /* Callers store zero here to inhibit the error message `getopt' prints
  41.    for unrecognized options.  */
  42.  
  43. extern int opterr;
  44.  
  45. /* getopt () stores the last character processed as an option here just
  46.    before returning. */
  47. extern int optopt;
  48.  
  49. /* Describe the long-named options requested by the application.
  50.    _GETOPT_LONG_OPTIONS is a vector of `struct option' terminated by an
  51.    element containing a name which is zero.
  52.  
  53.    The field `has_arg' is:
  54.    0 if the option does not take an argument,
  55.    1 if the option requires an argument,
  56.    2 if the option takes an optional argument.
  57.  
  58.    If the field `flag' is nonzero, it points to a variable that is set
  59.    to the value given in the field `val' when the option is found, but
  60.    left unchanged if the option is not found.
  61.  
  62.    To have a long-named option do something other than set an `int' to
  63.    a compiled-in constant, such as set a value from `optarg', set the
  64.    option's `flag' field to zero and its `val' field to a nonzero
  65.    value (the equivalent single-letter option character, if there is
  66.    one).  For long options that have a zero `flag' field, `getopt'
  67.    returns the contents of the `val' field.  */
  68.  
  69. struct option
  70. {
  71.   char *name;
  72.   int has_arg;
  73.   int *flag;
  74.   int val;
  75. };
  76.  
  77. #ifdef __STDC__
  78. extern const struct option *_getopt_long_options;
  79. #else
  80. extern struct option *_getopt_long_options;
  81. #endif
  82.  
  83. /* If nonzero, '-' can introduce long-named options.
  84.    Set by getopt_long_only.  */
  85.  
  86. extern int _getopt_long_only;
  87.  
  88. /* The index in GETOPT_LONG_OPTIONS of the long-named option found.
  89.    Only valid when a long-named option has been found by the most
  90.    recent call to `getopt'.  */
  91.  
  92. extern int option_index;
  93.  
  94. #ifdef __STDC__
  95. int getopt (int argc, char **argv, const char *shortopts);
  96. int getopt_long (int argc, char **argv, const char *shortopts,
  97.          const struct option *longopts, int *longind);
  98. int getopt_long_only (int argc, char **argv, const char *shortopts,
  99.               const struct option *longopts, int *longind);
  100. void getopt_set_posix_option_order (int on_or_off);
  101. void envopt(int *pargc, char ***pargv, char *optstr);
  102. #else
  103. int getopt ();
  104. int getopt_long ();
  105. int getopt_long_only ();
  106. void getopt_set_posix_option_order ();
  107. void envopt();
  108. #endif
  109.